home *** CD-ROM | disk | FTP | other *** search
- /*
- * java.lang.Throwable.c
- *
- * Copyright (c) 1996 Systems Architecture Research Centre,
- * City University, London, UK.
- *
- * See the file "license.terms" for information on usage and redistribution
- * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- *
- * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
- */
-
- #include <stdio.h>
- #include <assert.h>
- #include <native.h>
- #include "../java.io/java.io.PrintStream.h"
- #include "java.lang.Throwable.h"
-
- /*
- * Fill in stack trace information - don't know what thought.
- */
- struct Hjava_lang_Throwable*
- java_lang_Throwable_fillInStackTrace(struct Hjava_lang_Throwable* o)
- {
- unhand(o)->backtrace = 0;
- return (o);
- }
-
- /*
- * Dump the stack trace to the given stream.
- */
- void
- java_lang_Throwable_printStackTrace0(struct Hjava_lang_Throwable* o, struct Hjava_io_PrintStream* p)
- {
- }
-